
[dbo].[FinancialEntityDueTo]
CREATE TABLE [dbo].[FinancialEntityDueTo]
(
[FinancialEntityDueToKey] [uniqueidentifier] NOT NULL,
[FromFinancialEntityKey] [uniqueidentifier] NOT NULL,
[ToFinancialEntityKey] [uniqueidentifier] NOT NULL,
[FromFinEntityGLAccountKey] [uniqueidentifier] NOT NULL,
[ToFinEntityGLAccountKey] [uniqueidentifier] NOT NULL,
[MarkedForDeleteOn] [datetime] NULL
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[FinancialEntityDueTo] ADD CONSTRAINT [PK_FinancialEntityDueTo] PRIMARY KEY CLUSTERED ([FinancialEntityDueToKey]) ON [PRIMARY]
GO